AE 417 · Aerospace Structures and Instrumentation Laboratory · Fall 2025 · ERAU
Strain gages are the workhorse sensor of structural testing. They appear on aircraft structural test articles, wind turbine blades, bridge load cells, and Formula 1 suspension components. Unlike extensometers, they can be bonded to any surface, measure highly localized strain, and operate in environments where no other sensor could reach. This lab covered the full installation process from raw surface preparation through data collection, developing practical skills that are directly applicable to structural health monitoring, load cell design, and experimental stress analysis.
The aluminum beam surface was degreased, sanded through 320 and 400 grit, conditioned with M-Prep Conditioner A, then the gage was positioned and bonded with M-Bond 200 adhesive and catalyst following Vishay bulletin B-127-14. Lead wires were soldered and connected via banana plug to a digital multimeter, which measured resistance to 0.001 Ω resolution. The beam was cantilevered in a “diving board” configuration and masses of 1, 2, and 3 kg were hung from the free end. Bending strain was computed from the measured resistance change ΔR and the gage factor GF:
ε = (ΔR / R) / GF
Bending stress was calculated from beam theory (σ = My/I for the aluminum beam; σ = M/(h·tf·b) for the sandwich beam), and Young’s modulus extracted as E = σ/ε.
Two scripts handled strain-load plotting and stress-strain curve generation using measured beam geometry and bending theory formulas.
% Strain from resistance change and gage factor (GF = 2)
al_strain_T = [0 0.000354 0.000699 0.00104]; % aluminum tension
hc_strain_T = [0 0.000429 0.000861 0.00129]; % CFRP tension
% Aluminum bending stress: sigma = M*y / I
M_al = F * L_al; % N·m
sigma_al = M_al .* y_al ./ I_al; % Pa
% CFRP sandwich facing stress: sigma = M / (b * h_f * t_face)
sigma_cf = M_cf ./ (b_cf * h_f * t_face);
% Young's modulus at 1 kg: E = sigma / epsilon
E_Al = sigma_al(2) / al_strain_T(2); % – 84 GPa
E_CFRP = sigma_cf(2) / hc_strain_T(2); % – 74 GPa